tests: Add test for background-repeat
authorBenjamin Otte <otte@redhat.com>
Thu, 5 Jan 2012 01:49:43 +0000 (02:49 +0100)
committerBenjamin Otte <otte@redhat.com>
Mon, 9 Jan 2012 17:37:58 +0000 (18:37 +0100)
tests/css/parser/Makefile.am
tests/css/parser/background-repeat.css [new file with mode: 0644]
tests/css/parser/background-repeat.ref.css [new file with mode: 0644]

index cd8039b350e5e9c082c0aa337539ced23b34d2e1..fbb8ae20273f8b9db97b371b9c8763bd57c6baac 100644 (file)
@@ -149,6 +149,8 @@ EXTRA_DIST += \
        at-valid-21.css \
        at-valid-21.errors \
        at-valid-21.ref.css \
+       background-repeat.css \
+       background-repeat.ref.css \
        background-shorthand.css \
        background-shorthand.ref.css \
        boolean.css \
diff --git a/tests/css/parser/background-repeat.css b/tests/css/parser/background-repeat.css
new file mode 100644 (file)
index 0000000..6bfec32
--- /dev/null
@@ -0,0 +1,87 @@
+a {
+  background-repeat: repeat-x;
+}
+
+b {
+  background-repeat: repeat-y;
+}
+
+c {
+  background-repeat: repeat;
+}
+
+d {
+  background-repeat: space;
+}
+
+e {
+  background-repeat: round;
+}
+
+f {
+  background-repeat: no-repeat;
+}
+
+g {
+  background-repeat: repeat repeat;
+}
+
+h {
+  background-repeat: repeat space;
+}
+
+i {
+  background-repeat: repeat round;
+}
+
+j {
+  background-repeat: repeat no-repeat;
+}
+
+k {
+  background-repeat: space repeat;
+}
+
+l {
+  background-repeat: space space;
+}
+
+m {
+  background-repeat: space round;
+}
+
+n {
+  background-repeat: space no-repeat;
+}
+
+g {
+  background-repeat: round repeat;
+}
+
+h {
+  background-repeat: round space;
+}
+
+o {
+  background-repeat: round round;
+}
+
+p {
+  background-repeat: round no-repeat;
+}
+
+q {
+  background-repeat: no-repeat repeat;
+}
+
+r {
+  background-repeat: no-repeat space;
+}
+
+s {
+  background-repeat: no-repeat round;
+}
+
+t {
+  background-repeat: no-repeat no-repeat;
+}
diff --git a/tests/css/parser/background-repeat.ref.css b/tests/css/parser/background-repeat.ref.css
new file mode 100644 (file)
index 0000000..67b42e6
--- /dev/null
@@ -0,0 +1,87 @@
+a {
+  background-repeat: repeat-x;
+}
+
+b {
+  background-repeat: repeat-y;
+}
+
+c {
+  background-repeat: repeat;
+}
+
+d {
+  background-repeat: space;
+}
+
+e {
+  background-repeat: round;
+}
+
+f {
+  background-repeat: no-repeat;
+}
+
+g {
+  background-repeat: repeat;
+}
+
+h {
+  background-repeat: repeat space;
+}
+
+i {
+  background-repeat: repeat round;
+}
+
+j {
+  background-repeat: repeat-x;
+}
+
+k {
+  background-repeat: space repeat;
+}
+
+l {
+  background-repeat: space;
+}
+
+m {
+  background-repeat: space round;
+}
+
+n {
+  background-repeat: space no-repeat;
+}
+
+g {
+  background-repeat: round repeat;
+}
+
+h {
+  background-repeat: round space;
+}
+
+o {
+  background-repeat: round;
+}
+
+p {
+  background-repeat: round no-repeat;
+}
+
+q {
+  background-repeat: repeat-y;
+}
+
+r {
+  background-repeat: no-repeat space;
+}
+
+s {
+  background-repeat: no-repeat round;
+}
+
+t {
+  background-repeat: no-repeat;
+}